home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / virus / virusz35.lha / VirusZ / Install.script < prev    next >
Text File  |  1992-06-06  |  1KB  |  48 lines

  1. ; Script file to install reqtools.library and decrunch.library.
  2. ; Based on Nico François's reqtools installation script.
  3.  
  4. FailAt 20
  5. Echo "VirusZ Library Installation Script"
  6.  
  7. Version >NIL: LIBS:reqtools.library
  8. If NOT ERROR
  9.    Echo "Version of reqtools.library already installed:"
  10.    Version LIBS:reqtools.library
  11. EndIf
  12. Ask "Install reqtools.library?"
  13. If NOT WARN
  14.    Echo "Installation of reqtools.library aborted!"
  15.    Skip INSTALLDECR
  16. EndIf
  17. Version >NIL: exec.library 37
  18. If NOT WARN
  19.    Echo "Your Amiga has Kickstart 2.0 (v37) or higher in ROM."
  20.    Ask "Install special AmigaDOS Release 2 version of reqtools.library ?"
  21.    If WARN
  22.       Copy libs/reqtools.library.20 LIBS:reqtools.library
  23.       Echo "reqtools.library (2.0 version) copied to your LIBS: directory."
  24.       Skip INSTALLDECR
  25.    EndIf
  26. EndIf
  27. Copy libs/reqtools.library.13 LIBS:reqtools.library
  28. Echo "reqtools.library copied to your LIBS: directory."
  29.  
  30. Lab INSTALLDECR
  31. Version >NIL: LIBS:decrunch.library
  32. If NOT ERROR
  33.    Echo "Version of decrunch.library already installed:"
  34.    Version LIBS:decrunch.library
  35. EndIf
  36. Ask "Install decrunch.library?"
  37. If NOT WARN
  38.    Echo "Installation of decrunch.library aborted!"
  39.    Skip END
  40. EndIf
  41. Copy libs/decrunch.library LIBS:decrunch.library
  42. Echo "decrunch.library copied to your LIBS: directory."
  43.  
  44. Lab END
  45. Echo "End of installation script!"
  46. Wait 4
  47. EndCLI >NIL:
  48.